home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 21 / CU Amiga Magazine's Super CD-ROM 21 (1998)(EMAP Images)(GB)[!][issue 1998-04].iso / CUCD / Programming / Python-1.4 / Python1.4_Source / Modules / structmodule.c < prev    next >
C/C++ Source or Header  |  1996-12-15  |  10KB  |  497 lines

  1. /***********************************************************
  2. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  3. The Netherlands.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its
  8. documentation for any purpose and without fee is hereby granted,
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in
  11. supporting documentation, and that the names of Stichting Mathematisch
  12. Centrum or CWI or Corporation for National Research Initiatives or
  13. CNRI not be used in advertising or publicity pertaining to
  14. distribution of the software without specific, written prior
  15. permission.
  16.  
  17. While CWI is the initial source for this software, a modified version
  18. is made available by the Corporation for National Research Initiatives
  19. (CNRI) at the Internet address ftp://ftp.python.org.
  20.  
  21. STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
  22. REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
  23. MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
  24. CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
  25. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  26. PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  27. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  28. PERFORMANCE OF THIS SOFTWARE.
  29.  
  30. ******************************************************************/
  31.  
  32. /* struct module -- pack values into and (out of) strings */
  33.  
  34. #include "allobjects.h"
  35. #include "modsupport.h"
  36.  
  37. #include "protos/structmodule_protos.h"
  38.  
  39. static object *StructError;
  40.  
  41.  
  42. /* Define various structs to figure out the alignments of types */
  43.  
  44. #ifdef __MWERKS__
  45. /*
  46. ** XXXX We have a problem here. There are no unique alignment rules
  47. ** on the PowerPC mac. 
  48. */
  49. #ifdef __powerc
  50. #pragma options align=mac68k
  51. #endif
  52. #endif /* __MWERKS__ */
  53.  
  54. typedef struct { char c; short x; } s_short;
  55. typedef struct { char c; int x; } s_int;
  56. typedef struct { char c; long x; } s_long;
  57. typedef struct { char c; float x; } s_float;
  58. typedef struct { char c; double x; } s_double;
  59.  
  60. #define SHORT_ALIGN (sizeof(s_short) - sizeof(short))
  61. #define INT_ALIGN (sizeof(s_int) - sizeof(int))
  62. #define LONG_ALIGN (sizeof(s_long) - sizeof(long))
  63. #define FLOAT_ALIGN (sizeof(s_float) - sizeof(float))
  64. #define DOUBLE_ALIGN (sizeof(s_double) - sizeof(double))
  65.  
  66. #ifdef __powerc
  67. #pragma options align=reset
  68. #endif
  69.  
  70.  
  71. /* Align a size according to a format code */
  72.  
  73. static int
  74. align(size, c)
  75.     int size;
  76.     int c;
  77. {
  78.     int a;
  79.  
  80.     switch (c) {
  81.     case 'h': a = SHORT_ALIGN; break;
  82.     case 'i': a = INT_ALIGN; break;
  83.     case 'l': a = LONG_ALIGN; break;
  84.     case 'f': a = FLOAT_ALIGN; break;
  85.     case 'd': a = DOUBLE_ALIGN; break;
  86.     default: return size;
  87.     }
  88.     return (size + a - 1) / a * a;
  89. }
  90.  
  91.  
  92. /* calculate the size of a format string */
  93.  
  94. static int
  95. calcsize(fmt)
  96.     char *fmt;
  97. {
  98.     char *s;
  99.     char c;
  100.     int size,  num, itemsize, x;
  101.  
  102.     s = fmt;
  103.     size = 0;
  104.     while ((c = *s++) != '\0') {
  105.         if ('0' <= c && c <= '9') {
  106.             num = c - '0';
  107.             while ('0' <= (c = *s++) && c <= '9') {
  108.                 x = num*10 + (c - '0');
  109.                 if (x/10 != num) {
  110.                     err_setstr(StructError,
  111.                            "int overflow in fmt");
  112.                     return -1;
  113.                 }
  114.                 num = x;
  115.             }
  116.             if (c == '\0')
  117.                 break;
  118.         }
  119.         else
  120.             num = 1;
  121.         
  122.         size = align(size, c);
  123.         
  124.         switch (c) {
  125.             
  126.         case 'x': /* pad byte */
  127.         case 'b': /* byte-sized int */
  128.         case 'c': /* char */
  129.             itemsize = 1;
  130.             break;
  131.  
  132.         case 'h': /* short ("half-size)" int */
  133.             itemsize = sizeof(short);
  134.             break;
  135.  
  136.         case 'i': /* natural-size int */
  137.             itemsize = sizeof(int);
  138.             break;
  139.  
  140.         case 'l': /* long int */
  141.             itemsize = sizeof(long);
  142.             break;
  143.  
  144.         case 'f': /* float */
  145.             itemsize = sizeof(float);
  146.             break;
  147.  
  148.         case 'd': /* double */
  149.             itemsize = sizeof(double);
  150.             break;
  151.  
  152.         default:
  153.             err_setstr(StructError, "bad char in fmt");
  154.             return -1;
  155.  
  156.         }
  157.         
  158.         x = num * itemsize;
  159.         size += x;
  160.         if (x/itemsize != num || size < 0) {
  161.             err_setstr(StructError, "total struct size too long");
  162.             return -1;
  163.         }
  164.             
  165.     }
  166.  
  167.     return size;
  168. }
  169.  
  170.  
  171. /* pack(fmt, v1, v2, ...) --> string */
  172.  
  173. static object *
  174. struct_calcsize(self, args)
  175.     object *self; /* Not used */
  176.     object *args;
  177. {
  178.     char *fmt;
  179.     int size;
  180.  
  181.     if (!getargs(args, "s", &fmt))
  182.         return NULL;
  183.     size = calcsize(fmt);
  184.     if (size < 0)
  185.         return NULL;
  186.     return newintobject((long)size);
  187. }
  188.  
  189.  
  190. /* pack(fmt, v1, v2, ...) --> string */
  191.  
  192. static object *
  193. struct_pack(self, args)
  194.     object *self; /* Not used */
  195.     object *args;
  196. {
  197.     object *format, *result, *v;
  198.     char *fmt;
  199.     int size, num;
  200.     int i, n;
  201.     char *s, *res, *restart;
  202.     char c;
  203.     long ival;
  204.     double fval;
  205.  
  206.     if (args == NULL || !is_tupleobject(args) ||
  207.         (n = gettuplesize(args)) < 1) {
  208.         err_badarg();
  209.         return NULL;
  210.     }
  211.     format = gettupleitem(args, 0);
  212.     if (!getargs(format, "s", &fmt))
  213.         return NULL;
  214.     size = calcsize(fmt);
  215.     if (size < 0)
  216.         return NULL;
  217.     result = newsizedstringobject((char *)NULL, size);
  218.     if (result == NULL)
  219.         return NULL;
  220.  
  221.     s = fmt;
  222.     i = 1;
  223.     res = restart = getstringvalue(result);
  224.  
  225.     while ((c = *s++) != '\0') {
  226.         if ('0' <= c && c <= '9') {
  227.             num = c - '0';
  228.             while ('0' <= (c = *s++) && c <= '9')
  229.                    num = num*10 + (c - '0');
  230.             if (c == '\0')
  231.                 break;
  232.         }
  233.         else
  234.             num = 1;
  235.  
  236.         res = restart + align((int)(res-restart), c);
  237.  
  238.         while (--num >= 0) {
  239.             switch (c) {
  240.  
  241.             case 'x': /* pad byte */
  242.                 *res++ = '\0';
  243.                 break;
  244.  
  245.             case 'l':
  246.             case 'i':
  247.             case 'h':
  248.             case 'b':
  249.                 if (i >= n) {
  250.                     err_setstr(StructError,
  251.                        "insufficient arguments to pack");
  252.                     goto fail;
  253.                 }
  254.                 v = gettupleitem(args, i++);
  255.                 if (!is_intobject(v)) {
  256.                     err_setstr(StructError,
  257.                        "bad argument type to pack");
  258.                     goto fail;
  259.                 }
  260.                 ival = getintvalue(v);
  261.                 switch (c) {
  262.                 case 'b':
  263.                     *res++ = ival;
  264.                     break;
  265.                 case 'h':
  266.                     *(short*)res = ival;
  267.                     res += sizeof(short);
  268.                     break;
  269.                 case 'i':
  270.                     *(int*)res = ival;
  271.                     res += sizeof(int);
  272.                     break;
  273.                 case 'l':
  274.                     *(long*)res = ival;
  275.                     res += sizeof(long);
  276.                     break;
  277.                 }
  278.                 break;
  279.  
  280.             case 'c':
  281.                 if (i >= n) {
  282.                     err_setstr(StructError,
  283.                        "insufficient arguments to pack");
  284.                     goto fail;
  285.                 }
  286.                 v = gettupleitem(args, i++);
  287.                 if (!is_stringobject(v) ||
  288.                     getstringsize(v) != 1) {
  289.                     err_setstr(StructError,
  290.                        "bad argument type to pack");
  291.                     goto fail;
  292.                 }
  293.                 *res++ = getstringvalue(v)[0];
  294.                 break;
  295.  
  296.             case 'd':
  297.             case 'f':
  298.                 if (i >= n) {
  299.                     err_setstr(StructError,
  300.                        "insufficient arguments to pack");
  301.                     goto fail;
  302.                 }
  303.                 v = gettupleitem(args, i++);
  304.                 if (!is_floatobject(v)) {
  305.                     err_setstr(StructError,
  306.                        "bad argument type to pack");
  307.                     goto fail;
  308.                 }
  309.                 fval = getfloatvalue(v);
  310.                 switch (c) {
  311.                 case 'f':
  312.                     *(float*)res = (float)fval;
  313.                     res += sizeof(float);
  314.                     break;
  315.                 case 'd':
  316.                     memcpy(res, (char*)&fval, sizeof fval);
  317.                     res += sizeof(double);
  318.                     break;
  319.                 }
  320.                 break;
  321.  
  322.             default:
  323.                 err_setstr(StructError, "bad char in fmt");
  324.                 goto fail;
  325.  
  326.             }
  327.         }
  328.     }
  329.  
  330.     if (i < n) {
  331.         err_setstr(StructError, "too many arguments for pack fmt");
  332.         goto fail;
  333.     }
  334.  
  335.     return result;
  336.  
  337.  fail:
  338.     DECREF(result);
  339.     return NULL;
  340. }
  341.  
  342.  
  343. /* Helper to convert a list to a tuple */
  344.  
  345. static object *
  346. totuple(list)
  347.     object *list;
  348. {
  349.     int len = getlistsize(list);
  350.     object *tuple = newtupleobject(len);
  351.     if (tuple != NULL) {
  352.         int i;
  353.         for (i = 0; i < len; i++) {
  354.             object *v = getlistitem(list, i);
  355.             INCREF(v);
  356.             settupleitem(tuple, i, v);
  357.         }
  358.     }
  359.     DECREF(list);
  360.     return tuple;
  361. }
  362.  
  363.  
  364. /* unpack(fmt, string) --> (v1, v2, ...) */
  365.  
  366. static object *
  367. struct_unpack(self, args)
  368.     object *self; /* Not used */
  369.     object *args;
  370. {
  371.     char *str, *start, *fmt, *s;
  372.     char c;
  373.     int len, size, num, x;
  374.     object *res, *v;
  375.  
  376.     if (!getargs(args, "(ss#)", &fmt, &start, &len))
  377.         return NULL;
  378.     size = calcsize(fmt);
  379.     if (size != len) {
  380.         err_setstr(StructError, "unpack str size does not match fmt");
  381.         return NULL;
  382.     }
  383.     res = newlistobject(0);
  384.     if (res == NULL)
  385.         return NULL;
  386.     str = start;
  387.     s = fmt;
  388.     while ((c = *s++) != '\0') {
  389.         if ('0' <= c && c <= '9') {
  390.             num = c - '0';
  391.             while ('0' <= (c = *s++) && c <= '9')
  392.                    num = num*10 + (c - '0');
  393.             if (c == '\0')
  394.                 break;
  395.         }
  396.         else
  397.             num = 1;
  398.  
  399.         str = start + align((int)(str-start), c);
  400.  
  401.         while (--num >= 0) {
  402.             switch (c) {
  403.  
  404.             case 'x':
  405.                 str++;
  406.                 continue;
  407.  
  408.             case 'b':
  409.                 x = *str++;
  410.                 if (x >= 128)
  411.                     x -= 256;
  412.                 v = newintobject((long)x);
  413.                 break;
  414.  
  415.             case 'c':
  416.                 v = newsizedstringobject(str, 1);
  417.                 str++;
  418.                 break;
  419.  
  420.             case 'h':
  421.                 v = newintobject((long)*(short*)str);
  422.                 str += sizeof(short);
  423.                 break;
  424.  
  425.             case 'i':
  426.                 v = newintobject((long)*(int*)str);
  427.                 str += sizeof(int);
  428.                 break;
  429.  
  430.             case 'l':
  431.                 v = newintobject(*(long*)str);
  432.                 str += sizeof(long);
  433.                 break;
  434.  
  435.             case 'f':
  436.                 v = newfloatobject((double)*(float*)str);
  437.                 str += sizeof(float);
  438.                 break;
  439.  
  440.             case 'd':
  441.                 {
  442.                 double d;
  443.                 memcpy((char *)&d, str, sizeof d);
  444.                 v = newfloatobject(d);
  445.                 str += sizeof(double);
  446.                 break;
  447.                 }
  448.  
  449.             default:
  450.                 err_setstr(StructError, "bad char in fmt");
  451.                 goto fail;
  452.  
  453.             }
  454.             if (v == NULL || addlistitem(res, v) < 0)
  455.                 goto fail;
  456.             DECREF(v);
  457.         }
  458.     }
  459.  
  460.     return totuple(res);
  461.  
  462.  fail:
  463.     DECREF(res);
  464.     return NULL;
  465. }
  466.  
  467.  
  468. /* List of functions */
  469.  
  470. static struct methodlist struct_methods[] = {
  471.     {"calcsize",    struct_calcsize},
  472.     {"pack",    struct_pack,    1/*varargs*/},
  473.     {"unpack",    struct_unpack},
  474.     {NULL,        NULL}        /* sentinel */
  475. };
  476.  
  477.  
  478. /* Module initialization */
  479.  
  480. void
  481. initstruct()
  482. {
  483.     object *m, *d;
  484.  
  485.     /* Create the module and add the functions */
  486.     m = initmodule("struct", struct_methods);
  487.  
  488.     /* Add some symbolic constants to the module */
  489.     d = getmoduledict(m);
  490.     StructError = newstringobject("struct.error");
  491.     dictinsert(d, "error", StructError);
  492.  
  493.     /* Check for errors */
  494.     if (err_occurred())
  495.         fatal("can't initialize module struct");
  496. }
  497.